home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / cmds / perl / dist / util.h < prev    next >
Encoding:
C/C++ Source or Header  |  1991-11-14  |  1.1 KB  |  51 lines

  1. /* $RCSfile: util.h,v $$Revision: 4.0.1.2 $$Date: 91/11/05 19:18:40 $
  2.  *
  3.  *    Copyright (c) 1991, Larry Wall
  4.  *
  5.  *    You may distribute under the terms of either the GNU General Public
  6.  *    License or the Artistic License, as specified in the README file.
  7.  *
  8.  * $Log:    util.h,v $
  9.  * Revision 4.0.1.2  91/11/05  19:18:40  lwall
  10.  * patch11: safe malloc code now integrated into Perl's malloc when possible
  11.  * 
  12.  * Revision 4.0.1.1  91/06/07  12:11:00  lwall
  13.  * patch4: new copyright notice
  14.  * 
  15.  * Revision 4.0  91/03/20  01:56:48  lwall
  16.  * 4.0 baseline.
  17.  * 
  18.  */
  19.  
  20. EXT int *screamfirst INIT(Null(int*));
  21. EXT int *screamnext INIT(Null(int*));
  22.  
  23. #ifndef safemalloc
  24. char    *safemalloc();
  25. char    *saferealloc();
  26. #endif
  27. char    *cpytill();
  28. char    *instr();
  29. char    *fbminstr();
  30. char    *screaminstr();
  31. void    fbmcompile();
  32. char    *savestr();
  33. void    setenv();
  34. int    envix();
  35. void    growstr();
  36. char    *ninstr();
  37. char    *rninstr();
  38. char    *nsavestr();
  39. FILE    *mypopen();
  40. int    mypclose();
  41. #ifndef HAS_MEMCPY
  42. #ifndef HAS_BCOPY
  43. char    *bcopy();
  44. #endif
  45. #ifndef HAS_BZERO
  46. char    *bzero();
  47. #endif
  48. #endif
  49. unsigned long scanoct();
  50. unsigned long scanhex();
  51.